home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 106
/
Vol 106.iso
/
games
/
crash_du.swf
/
scripts
/
DefineButton2_57
/
BUTTONCONDACTION on(press).as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2010-04-12
|
225 b
|
15 lines
on(press){
if(vol == 1)
{
gotoAndStop("off");
vol = 0;
allsound.setVolume(0);
}
else if(vol == 0)
{
gotoAndStop("on");
vol = 1;
allsound.setVolume(100);
}
}